06CSL68 SYSTEM SOFTWARE AND COMPILER DESIGN LABORATORY syllabus for CS


Part A
Unit-1 Execute the following programs using LEX 0 hours

a. Program to count the number of characters, words, spaces and lines in a given input file. b.Program to count the numbers of comment lines in a given C program. Also eliminate them and copy the resulting program into separate file.

Unit-2 Execute the following programs using LEX 0 hours

a. Program to recognize a valid arithmetic expression and to recognize the identifiers and operators present. Print them separately. b. Program to recognize whether a given sentence is simple or compound.

Unit-3 Execute the following programs using LEX 0 hours

Program to recognize and count the number of identifiers in a given input file.

Unit-4 Execute the following programs using YACC 0 hours

a. Program to recognize a valid arithmetic expression that uses operators +, -, * and /. b. Program to recognize a valid variable, which starts with a letter, followed by any number of letters or digits.

Unit-5 Execute the following programs using YACC 0 hours

a. Program to evaluate an arithmetic expression involving operators +, -, * and /. b. Program to recognize strings ‘aaab’, ‘abbb’, ‘ab’ and ‘a’ using the grammar (anbn, n>= 0).

Unit-6 Execute the following programs using YACC 0 hours

Program to recognize the grammar (anb, n>= 10).

Part B
Unit-1 UNIX PROGRAMMING 0 hours

a) Non-recursive shell script that accepts any number of argument and prints them in the Reverse order, (For example, if the script is named rargs, then executing rargs A B C should produce C B A on the standard output). b) C program that creates a child process to read commands from the standard input and execute them (a minimal implementation of a shell – like program). You can assume that no arguments will be passed to the commands to be executed

Unit-2 UNIX PROGRAMMING 0 hours

a) Shell script that accepts two file names as arguments, checks if the permissions for these files are identical and if the permissions are identical, outputs the common permissions, otherwise outputs each file name followed by its permissions b) C program to create a file with 16 bytes of arbitrary data from the beginning and another 16 bytes of arbitrary data from an offset of 48.Display the file contents to demonstrate how the hole in file is handled.

Unit-3 UNIX PROGRAMMING 0 hours

a) Shell function that takes a valid directory names as an argument and recursively descends all the subdirectories, finds the maximum length of any file in that hierarchy and writes this maximum value to the standard output b) C program that accepts valid file names as command line arguments and for each of the arguments, prints the type of the file (Regular file, Directory file, Character special file, Block special file, Symbolic link etc.)

Unit-4 UNIX PROGRAMMING 0 hours

a) Shell script that accepts file names specified as arguments and creates a shell script that contains this file as well as the code to recreate these files. Thus if the script generated by your script is executed, it would recreate the original files(This is same as the “bundle” script described by Brain W. Kernighan and Rob Pike in “ The Unix Programming Environment”, Prentice – Hall India). b) C program to do the following: Using fork( ) create a child process.The child process prints its own process-id and id of its parent and then exits. The parent process waits for its child to finish (by executing the wait( )) and prints its own process-id and the id of its child process and then exits.

Last Updated: Tuesday, January 24, 2023